home *** CD-ROM | disk | FTP | other *** search
- echo off
- cls
- if %1 == c goto harddisk
- if %1 == a goto floppy
- echo You should decide whether you want to install The Draftsman
- echo on a hard disk or floppy.
- echo Type Install c (not c:) to install on a hard disk.
- echo Type Install a (not a:) to install on a floppy disk.
- goto stop
- :floppy
- echo You will need to create two diskettes before using The Draftsman.
- echo The first disk will contain the program, the second will
- echo contain the manual.
- echo If you do not have two formatted disks ready now, press
- echo Ctrl-Break to stop the backup, and format two blanks.
- pause
- cls
- echo I will now prepare your program disk.
- echo Insert a formatted blank in drive b:
- pause
- copy Drawman.exe b:/v
- copy help.dqt b:/v
- b:
- a:doc b:help.dqt
- a:
- del b:help.dqt
- copy vio.dat b:/v
- copy menu.dat b:/v
- copy error.dat b:/v
- copy work.dat b:/v
- copy filef.dat b:file.dat/v
- echo Drive B: contains these important Draftsman files:
- dir b:
- echo Please remove this disk from B: and label it The Draftsman - Working Copy
- pause
- cls
- echo I will now "unsqueeze" The Draftsman's manual. Place a blank disk in B:
- pause
- b:
- copy drawman.dqc b:/v
- a:doc b:drawman.dqc
- a:
- dir b:
- echo Your expanded Draftsman documentation is now on drive B:
- echo Please remove this disk from B: and label it The Draftsman-Documentation
- goto close
- :harddisk
- echo Hard disk installation in progress...
- c:
- cd\
- md\drawman
- cd\drawman
- a:
- copy Drawman.exe c:/v
- copy help.dqt c:/v
- copy vio.dat c:/v
- copy menu.dat c:/v
- copy error.dat c:/v
- copy work.dat c:/v
- copy fileh.dat c:file.dat/v
- copy drawman.dqc c:/v
- c:
- a:doc c:help.dqt
- del c:help.dqt
- a:doc c:drawman.dqc
- del c:drawman.dqc
- a:
- echo Here are The Draftsman files on your hard disk
- dir c:
- pause
- cls
- :close
- echo Since you did not pay for The Draftsman, limited support
- echo for the product should be expected.
- echo .
- echo Some support may be obtained from a bulletin board (BBS)
- echo which you may call with your computer. The number is
- echo (202) 686-5360. It supports 300/1200 baud operation, and
- echo operates 24 hours a day, 7 days a week. There is no
- echo charge for accessing the BBS.
- echo .
- echo The current version of the product may be downloaded from
- echo this board.
- echo .
- pause
- cls
- echo The Draftsman is distributed with these conditions:
- echo 1. David Stang holds the copyright. No permission to
- echo modify any of The Draftsman programs is granted.
- echo 2. The Draftsman is not to be sold. No consideration is
- echo to be paid for its distribution, except for nominal
- echo copying charges.
- echo 3. The Draftsman is to be shared freely with anyone who
- echo may find it of benefit.
- echo 4. Happy users, who find The Draftsman of value, should
- echo consider sending a contribution to David Stang
- echo 3631 Jenifer St NW, Washington DC 20015
- echo .
- echo .
- echo If you wish to print your documentation now, turn on your
- echo printer.
- if %1 == a echo Place your new documentation disk in drive A:
- echo Press Ctrl-Break now if you do not want to print documentation.
- echo Or, to print your documentation,
- pause
- copy %1:drawman.doc prn:
- :stop